home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d10 / pcm_d1.arc / PHONE.BAT < prev    next >
DOS Batch File  |  1989-06-12  |  1KB  |  48 lines

  1. echo off
  2. cls
  3.  
  4. if %1X==X GOTO EXPLAIN
  5.  
  6.  
  7.  
  8. c:
  9. cd c:\
  10. cd contacts
  11. echo Seeking %1 ...
  12. contacts %1
  13. cd c:\
  14. cls
  15. GOTO END
  16.  
  17. :EXPLAIN
  18. echo                              ═══════════════════════
  19. echo                              QUICK TELEPHONE NUMBERS
  20. echo                              ═══════════════════════
  21. echo    
  22. echo               This program gives you fast contact details and saves
  23. echo               you stepping through menus.
  24. echo    
  25. echo               From anywhere in DOS (often same as the first main menu)
  26. echo               simply type "PHONE" together with a name.  For example,
  27. echo               if you are looking for one John's phone number, say:
  28. echo   
  29. echo                                    PHONE JOHN
  30. echo   
  31. echo                          and press your ─┘ or ENTER key.
  32. echo   
  33. echo               Giving just a few beginning letters of the name is
  34. echo               also sufficient.
  35. echo   
  36. echo               TIP: Remember to turn your name to OVERRIDE under the
  37. echo               "Personal Preferences" option in the "Maintenance" menu.
  38. echo   
  39. echo               This will save you having to confirm your name when the
  40. echo               program loads.
  41. echo   
  42. GOTO END
  43.  
  44. :END
  45. cd c:\
  46.  
  47. 
  48.